home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
checkb
/
excheq22
/
changes.bat
< prev
next >
Wrap
DOS Batch File
|
1990-04-11
|
430b
|
16 lines
@ECHO OFF
CLS
ECHO This batch file will print the CHANGES.!!! file
ECHO to printer port LPT1:
ECHO Please check that the printer is on !
ECHO Press any key to begin (Ctrl-Break to exit)....
PAUSE
IF NOT EXIST CHANGES.!!! GOTO :NOTFOUND
ECHO Now printing CHANGES.!!!...
COPY CHANGES.!!! LPT1:
ECHO CHANGES.!!! printed...
GOTO :END
:NOTFOUND
ECHO The file CHANGES.!!! was not found. Please check your disk....
:END